summaryrefslogtreecommitdiff
path: root/project2/common/variables/session.cpp
blob: 2e26a12b781251139cbab66a4c66cd88dc50ea8a (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
#include "../pch.hpp"
#include "../variables.h"
#include "../scriptLoader.h"
#include "../scriptStorage.h"
#include "../appEngine.h"

/// Variable implementation to access session contents
class VariableSession : public VariableImplDyn {
	public:
		VariableSession(ScriptNodePtr e) :
			VariableImplDyn(e),
			name(e->value("name").as<Glib::ustring>())
		{
		}
		VariableType value() const
		{
			try {
				return ApplicationEngine::getCurrent()->session()->GetValue(name);
			}
			catch (Session::VariableNotFound) {
				if (!defaultValue) {
					throw;
				}
				return (*defaultValue)();
			}
		}
	private:
		const Glib::ustring name;
};
DECLARE_COMPONENT_LOADER("session", VariableSession, VariableLoader);