aboutsummaryrefslogtreecommitdiff
path: root/src/example/proxy.cpp
blob: 7c2cb8de93963b971ab626355f3e4cb78b7b969b (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
/** \file
 * 
 * Standalone example for usage of the proxy type
 */

#include "ValueBroker.h"
#include <crepe/api/Config.h>
#include <crepe/util/log.h>
#include <crepe/util/Proxy.h>

using namespace std;
using namespace crepe;
using namespace crepe::util;

void test_ro_ref(const int & val) { }
void test_rw_ref(int & val) { }
void test_ro_val(int val) { }

int main() {
	auto & cfg = api::Config::get_instance();
	cfg.log.level = util::LogLevel::DEBUG;

	int real_value = 0;

	ValueBroker<int> broker {
		real_value,
		[] (int & value, const int & target) {
			dbg_logf("set %s to %s", to_string(value).c_str(), to_string(target).c_str());
			value = target;
		},
		[] (int & value) -> const int & {
			dbg_logf("get %s", to_string(value).c_str());
			return value;
		},
	};

	Proxy<int> proxy { broker };

	broker.set(54);
	proxy = 84;

	test_ro_ref(proxy); // this is allowed
	// test_rw_ref(proxy); // this should throw a compile error
	test_ro_val(proxy);

	return 0;
}