summaryrefslogtreecommitdiff
path: root/include/erebos/network.h
blob: d730fb5db196b2f609362f79b8a499a8b5c0a51c (plain)
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
#pragma once

#include <erebos/identity.h>
#include <erebos/service.h>

#include <functional>

namespace erebos {

class Server
{
public:
	Server(const Identity &, std::vector<std::unique_ptr<Service>> &&);
	~Server();

	class PeerList & peerList() const;

	struct Peer;
private:
	struct Priv;
	const std::shared_ptr<Priv> p;
};

class Peer
{
public:
	struct Priv;
	Peer(const std::shared_ptr<Priv> & p);
	~Peer();

	std::string name() const;
	std::optional<Identity> identity() const;

	bool hasChannel() const;
	bool send(UUID, const Ref &) const;

private:
	std::shared_ptr<Priv> p;
};

class PeerList
{
public:
	struct Priv;
	PeerList();
	PeerList(const std::shared_ptr<Priv> & p);
	~PeerList();

	size_t size() const;
	Peer at(size_t n) const;

	void onUpdate(std::function<void(size_t, const Peer *)>);

private:
	friend Server;
	const std::shared_ptr<Priv> p;
};

}