summaryrefslogtreecommitdiff
path: root/include/erebos/service.h
blob: fa7f105b9dbe46a8dc93fbff3fa5bebe1f88edda (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
#pragma once

#include <erebos/state.h>
#include <erebos/uuid.h>

#include <memory>

namespace erebos {

class Service
{
public:
	Service();
	virtual ~Service();

	class Context
	{
	public:
		struct Priv;
		Context(Priv *);
		Priv & priv();

		const class Ref & ref() const;
		const class Peer & peer() const;

		const Stored<LocalState> & local() const;
		void local(const LocalState &);

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

	virtual UUID uuid() const = 0;
	virtual void handle(Context &) const = 0;
};

}