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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
#pragma once
#include <erebos/storage.h>
#include <netinet/in.h>
#include <cstdint>
#include <memory>
#include <mutex>
#include <variant>
#include <vector>
#include <optional>
namespace erebos {
using std::mutex;
using std::optional;
using std::unique_ptr;
using std::variant;
using std::vector;
class NetworkProtocol
{
public:
NetworkProtocol();
explicit NetworkProtocol(int sock);
NetworkProtocol(const NetworkProtocol &) = delete;
NetworkProtocol(NetworkProtocol &&);
NetworkProtocol & operator=(const NetworkProtocol &) = delete;
NetworkProtocol & operator=(NetworkProtocol &&);
~NetworkProtocol();
class Connection;
struct Header;
struct NewConnection;
struct ConnectionReadReady;
struct ProtocolClosed {};
using PollResult = variant<
NewConnection,
ConnectionReadReady,
ProtocolClosed>;
PollResult poll();
Connection connect(sockaddr_in6 addr);
bool recvfrom(vector<uint8_t> & buffer, sockaddr_in6 & addr);
void sendto(const vector<uint8_t> & buffer, sockaddr_in addr);
void sendto(const vector<uint8_t> & buffer, sockaddr_in6 addr);
void shutdown();
private:
int sock;
mutex protocolMutex;
vector<uint8_t> buffer;
struct ConnectionPriv;
vector<ConnectionPriv *> connections;
};
class NetworkProtocol::Connection
{
friend class NetworkProtocol;
Connection(unique_ptr<ConnectionPriv> p);
public:
Connection(const Connection &) = delete;
Connection(Connection &&);
Connection & operator=(const Connection &) = delete;
Connection & operator=(Connection &&);
~Connection();
using Id = uintptr_t;
Id id() const;
const sockaddr_in6 & peerAddress() const;
bool receive(vector<uint8_t> & buffer);
bool send(const vector<uint8_t> & buffer);
void close();
private:
unique_ptr<ConnectionPriv> p;
};
struct NetworkProtocol::NewConnection { Connection conn; };
struct NetworkProtocol::ConnectionReadReady { Connection::Id id; };
struct NetworkProtocol::Header
{
enum class Type {
Acknowledged,
DataRequest,
DataResponse,
AnnounceSelf,
AnnounceUpdate,
ChannelRequest,
ChannelAccept,
ServiceType,
ServiceRef,
};
struct Item {
const Type type;
const variant<Digest, UUID> value;
bool operator==(const Item &) const;
bool operator!=(const Item & other) const { return !(*this == other); }
};
Header(const vector<Item> & items): items(items) {}
static optional<Header> load(const PartialRef &);
static optional<Header> load(const PartialObject &);
PartialObject toObject(const PartialStorage &) const;
const vector<Item> items;
};
}
|