summaryrefslogtreecommitdiff
path: root/src/service.cpp
blob: 397bebd33352191c76237829c635cf5688b868e9 (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
#include "service.h"

using namespace erebos;

Service::Service() = default;
Service::~Service() = default;

Service::Context::Context(Priv * p):
	p(p)
{}

Service::Context::Priv & Service::Context::priv()
{
	return *p;
}

const Ref & Service::Context::ref() const
{
	return p->ref;
}

const Peer & Service::Context::peer() const
{
	return p->peer;
}

const Stored<LocalState> & Service::Context::local() const
{
	return p->local;
}

void Service::Context::local(const LocalState & ls)
{
	p->local = p->local.ref().storage().store(ls);
}

void Service::Context::afterCommit(function<void()> hook)
{
	p->afterCommit.push_back(move(hook));
}

void Service::Context::runAfterCommitHooks() const
{
	for (const auto & hook : p->afterCommit)
		hook();
}

void Service::serverStarted(const class Server &)
{
}