summaryrefslogtreecommitdiff
path: root/lib/persistance.cpp
blob: 0dd7cba628e458ee258a36f2c307769134fd646c (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
60
61
62
63
64
65
66
67
68
69
70
71
72
#include "persistance.h"
#include <map>

namespace Persistanace {
	using NamedTypeFactories = std::map<std::string_view, std::function<std::unique_ptr<Persistable>()>>;
	static NamedTypeFactories namedTypeFactories;

	void
	Persistable::addFactory(const std::string_view t, std::function<std::unique_ptr<Persistable>()> f)
	{
		namedTypeFactories.emplace(t, std::move(f));
	}

	std::unique_ptr<Persistable>
	Persistable::callFactory(const std::string_view t)
	{
		return namedTypeFactories.at(t)();
	}

	void
	Selection::setValue(float &)
	{
		throw std::runtime_error("Unexpected float");
	}

	void
	Selection::setValue(bool &)
	{
		throw std::runtime_error("Unexpected bool");
	}

	void
	Selection::setValue(const std::nullptr_t &)
	{
		throw std::runtime_error("Unexpected null");
	}

	void
	Selection::setValue(std::string &)
	{
		throw std::runtime_error("Unexpected string");
	}

	void
	Selection::beginArray(Stack &)
	{
		throw std::runtime_error("Unexpected array");
	}

	void
	Selection::beginObject(Stack &)
	{
		throw std::runtime_error("Unexpected object");
	}

	void
	Selection::beforeValue(Stack &)
	{
		throw std::runtime_error("Unexpected value");
	}

	SelectionPtr
	Selection::select(const std::string &)
	{
		throw std::runtime_error("Unexpected select");
	}

	void
	Selection::endObject(Stack &)
	{
	}
}