summaryrefslogtreecommitdiff
path: root/src/context.h
blob: f085e01b60a214a945b18118fcc71da6d89c601c (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
#ifndef CONTEXT_H_
#define CONTEXT_H_

#include <string>
#include <vector>
#include <boost/unordered_map.hpp>
#include "value.h"

using boost::unordered_map;

class Context
{
public:
	Context(const Context *parent = NULL, const class Module *library = NULL);
	~Context();

	void args(const std::vector<std::string> &argnames, 
						const std::vector<class Expression*> &argexpr, 
						const std::vector<std::string> &call_argnames, 
						const std::vector<Value> &call_argvalues);

	void set_variable(const std::string &name, const Value &value);
	void set_constant(const std::string &name, const Value &value);

	Value lookup_variable(const std::string &name, bool silent = false) const;
	Value evaluate_function(const std::string &name, 
													const std::vector<std::string> &argnames, 
													const std::vector<Value> &argvalues) const;
	class AbstractNode *evaluate_module(const class ModuleInstantiation &inst) const;

	void setDocumentPath(const std::string &path) { this->document_path = path; }
	std::string getAbsolutePath(const std::string &filename) const;

public:
	const Context *parent;
	const unordered_map<std::string, class AbstractFunction*> *functions_p;
	const unordered_map<std::string, class AbstractModule*> *modules_p;
	typedef unordered_map<std::string, class Module*> ModuleContainer;
	const ModuleContainer *usedlibs_p;
	const ModuleInstantiation *inst_p;

	static std::vector<const Context*> ctx_stack;

private:
	typedef unordered_map<std::string, Value> ValueMap;
	ValueMap constants;
	ValueMap variables;
	ValueMap config_variables;
	std::string document_path;
};

#endif
contact: Jan Huwald // Impressum