summaryrefslogtreecommitdiffstats
path: root/src/uscxml/Factory.h
blob: 6385ba7196d8e13b6218d89c520ce01e52e628a1 (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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
#ifndef FACTORY_H_5WKLGPRB
#define FACTORY_H_5WKLGPRB

#include "uscxml/Message.h"

#ifdef BUILD_AS_PLUGINS
#include "Pluma/Pluma.hpp"
#endif

#include <string>
#include <set>

namespace uscxml {

// see http://stackoverflow.com/questions/228005/alternative-to-itoa-for-converting-integer-to-string-c
template <typename T> std::string toStr(T tmp) {
	std::ostringstream out;
	out << tmp;
	return out.str();
}

template <typename T> T strTo(std::string tmp) {
	T output;
	std::istringstream in(tmp);
	in >> output;
	return output;
}

class Interpreter;

class ExecutableContent {
public:
	ExecutableContent() {};
	virtual ExecutableContent* create(Interpreter* interpreter) = 0;
};

class IOProcessor {
public:
	IOProcessor() {};
	virtual ~IOProcessor() {};
	virtual IOProcessor* create(Interpreter* interpreter) = 0;
	virtual std::set<std::string> getNames() = 0;

	virtual void setInterpreter(Interpreter* interpreter) {
		_interpreter = interpreter;
	}
	virtual Data getDataModelVariables() = 0;
	virtual void send(SendRequest& req) = 0;
protected:
	Interpreter* _interpreter;
};

class Invoker : public IOProcessor {
public:
	virtual void invoke(InvokeRequest& req) = 0;
	virtual void sendToParent(SendRequest& req) = 0;
};

class DataModel {
public:
	virtual ~DataModel() {}
	virtual DataModel* create(Interpreter* interpreter) = 0;
	virtual std::set<std::string> getNames() = 0;

	virtual bool validate(const std::string& location, const std::string& schema) = 0;
	virtual void setEvent(const Event& event) = 0;
	virtual Data getStringAsData(const std::string& content) = 0;

	virtual void registerIOProcessor(const std::string& name, IOProcessor* ioprocessor) = 0;

	// foreach
	virtual uint32_t getLength(const std::string& expr) = 0;
	virtual void pushContext() = 0;
	virtual void popContext() = 0;

	virtual void eval(const std::string& expr) = 0;
	virtual std::string evalAsString(const std::string& expr) = 0;
	virtual bool evalAsBool(const std::string& expr) = 0;
	virtual void assign(const std::string& location, const std::string& expr) = 0;
	virtual void assign(const std::string& location, const Data& data) = 0;
};

class Factory {
public:
	void registerIOProcessor(IOProcessor* ioProcessor);
	void registerDataModel(DataModel* dataModel);
	void registerInvoker(Invoker* invoker);
	void registerExecutableContent(const std::string tag, ExecutableContent* executableContent);

	static DataModel* getDataModel(const std::string type, Interpreter* interpreter);
	static IOProcessor* getIOProcessor(const std::string type, Interpreter* interpreter);
	static ExecutableContent* getExecutableContent(const std::string tag, Interpreter* interpreter);
	static Invoker* getInvoker(const std::string type, Interpreter* interpreter);

	static Factory* getInstance();

	std::map<std::string, DataModel*> _dataModels;
	std::map<std::string, IOProcessor*> _ioProcessors;
	std::map<std::string, Invoker*> _invokers;
	std::map<std::string, ExecutableContent*> _executableContent;

	static std::string pluginPath;

protected:
#ifdef BUILD_AS_PLUGINS
	pluma::Pluma pluma;
#endif

	Factory();
	~Factory();
	static Factory* _instance;

};


}

#endif /* end of include guard: FACTORY_H_5WKLGPRB */