summaryrefslogtreecommitdiffstats
path: root/src/bindings/swig/wrapped/WrappedInterpreterMonitor.h
blob: e9fa70fc47cfba8d4c483ff9a3f078967eb44804 (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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
/**
 *  @file
 *  @author     2012-2014 Stefan Radomski (stefan.radomski@cs.tu-darmstadt.de)
 *  @copyright  Simplified BSD
 *
 *  @cond
 *  This program is free software: you can redistribute it and/or modify
 *  it under the terms of the FreeBSD license as published by the FreeBSD
 *  project.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 *
 *  You should have received a copy of the FreeBSD license along with this
 *  program. If not, see <http://www.opensource.org/licenses/bsd-license>.
 *  @endcond
 */

#ifndef WRAPPEDINTERPRETERMONITOR_H_F5C83A0D
#define WRAPPEDINTERPRETERMONITOR_H_F5C83A0D

#include <vector>
#include <list>
#include <ostream>
#include <string>

#include <DOM/Document.hpp>
#include <DOM/io/Stream.hpp>

#include "../../../uscxml/Message.h"
#include "../../../uscxml/Factory.h"
#include "../../../uscxml/Interpreter.h"
#include "../../../uscxml/DOMUtils.h"

namespace uscxml {

class WrappedInterpreterMonitor : public InterpreterMonitor {
public:
	WrappedInterpreterMonitor();
	virtual ~WrappedInterpreterMonitor();

	virtual void beforeExitingState(Interpreter interpreter,
	                                const Arabica::DOM::Element<std::string>& state,
	                                bool moreComing) {
		std::stringstream ss;
		ss << state;
		beforeExitingState(interpreter, state.getAttribute("id"), DOMUtils::xPathForNode(state), ss.str(), moreComing);
	}
	virtual void beforeExitingState(Interpreter interpreter,
	                                const std::string& stateId,
	                                const std::string& xpath,
	                                const std::string& state,
	                                bool moreComing) {}


	virtual void afterExitingState(Interpreter interpreter,
	                               const Arabica::DOM::Element<std::string>& state,
	                               bool moreComing) {
		std::stringstream ss;
		ss << state;
		afterExitingState(interpreter, state.getAttribute("id"), DOMUtils::xPathForNode(state), ss.str(), moreComing);
	}
	virtual void afterExitingState(Interpreter interpreter,
	                               const std::string& stateId,
	                               const std::string& xpath,
	                               const std::string& state,
	                               bool moreComing) {	}


	virtual void beforeExecutingContent(Interpreter interpreter,
	                                    const Arabica::DOM::Element<std::string>& element) {
		std::stringstream ss;
		ss << element;
		beforeExecutingContent(interpreter, element.getTagName(), DOMUtils::xPathForNode(element), ss.str());
	}
	virtual void beforeExecutingContent(Interpreter interpreter,
	                                    const std::string& tagName,
	                                    const std::string& xpath,
	                                    const std::string& element) {}


	virtual void afterExecutingContent(Interpreter interpreter,
	                                   const Arabica::DOM::Element<std::string>& element) {
		std::stringstream ss;
		ss << element;
		afterExecutingContent(interpreter, element.getTagName(), DOMUtils::xPathForNode(element), ss.str());
	}
	virtual void afterExecutingContent(Interpreter interpreter,
	                                   const std::string& tagName,
	                                   const std::string& xpath,
	                                   const std::string& element) {}


	virtual void beforeUninvoking(Interpreter interpreter,
	                              const Arabica::DOM::Element<std::string>& invokeElem,
	                              const std::string& invokeid) {
		std::stringstream ss;
		ss << invokeElem;
		beforeUninvoking(interpreter, DOMUtils::xPathForNode(invokeElem), invokeid, ss.str());
	}
	virtual void beforeUninvoking(Interpreter interpreter,
	                              const std::string& xpath,
	                              const std::string& invokeid,
	                              const std::string& element) {}


	virtual void afterUninvoking(Interpreter interpreter,
	                             const Arabica::DOM::Element<std::string>& invokeElem,
	                             const std::string& invokeid) {
		std::stringstream ss;
		ss << invokeElem;
		afterUninvoking(interpreter, DOMUtils::xPathForNode(invokeElem), invokeid, ss.str());
	}
	virtual void afterUninvoking(Interpreter interpreter,
	                             const std::string& xpath,
	                             const std::string& invokeid,
	                             const std::string& element) {}


	virtual void beforeTakingTransition(Interpreter interpreter,
	                                    const Arabica::DOM::Element<std::string>& transition,
	                                    bool moreComing) {
		Arabica::DOM::Node<std::string> sourceState = interpreter.getImpl()->getSourceState(transition);
		Arabica::XPath::NodeSet<std::string> targetStates = interpreter.getImpl()->getTargetStates(transition);

		std::stringstream ss;
		ss << transition;

		std::list<std::string> targets;
		for (int i = 0; i < targetStates.size(); i++) {
			targets.push_back(ATTR_CAST(targetStates[i], "id"));
		}

		beforeTakingTransition(interpreter, DOMUtils::xPathForNode(transition), ATTR_CAST(sourceState, "id"), targets, ss.str(), moreComing);
	}
	virtual void beforeTakingTransition(Interpreter interpreter,
	                                    const std::string& xpath,
	                                    const std::string& source,
	                                    const std::list<std::string>& targets,
	                                    const std::string& element,
	                                    bool moreComing) {}

	virtual void afterTakingTransition(Interpreter interpreter,
	                                   const Arabica::DOM::Element<std::string>& transition,
	                                   bool moreComing) {
		Arabica::DOM::Node<std::string> sourceState = interpreter.getImpl()->getSourceState(transition);
		Arabica::XPath::NodeSet<std::string> targetStates = interpreter.getImpl()->getTargetStates(transition);

		std::stringstream ss;
		ss << transition;

		std::list<std::string> targets;
		for (int i = 0; i < targetStates.size(); i++) {
			targets.push_back(ATTR_CAST(targetStates[i], "id"));
		}

		afterTakingTransition(interpreter, DOMUtils::xPathForNode(transition), ATTR_CAST(sourceState, "id"), targets, ss.str(), moreComing);
	}
	virtual void afterTakingTransition(Interpreter interpreter,
	                                   const std::string& xpath,
	                                   const std::string& source,
	                                   const std::list<std::string>& targets,
	                                   const std::string& element,
	                                   bool moreComing) {}


	virtual void beforeEnteringState(Interpreter interpreter,
	                                 const Arabica::DOM::Element<std::string>& state,
	                                 bool moreComing) {
		std::stringstream ss;
		ss << state;
		beforeEnteringState(interpreter, state.getAttribute("id"), DOMUtils::xPathForNode(state), ss.str(), moreComing);
	}
	virtual void beforeEnteringState(Interpreter interpreter,
	                                 const std::string& stateId,
	                                 const std::string& xpath,
	                                 const std::string& state,
	                                 bool moreComing) {}


	virtual void afterEnteringState(Interpreter interpreter,
	                                const Arabica::DOM::Element<std::string>& state,
	                                bool moreComing) {
		std::stringstream ss;
		ss << state;
		afterEnteringState(interpreter, state.getAttribute("id"), DOMUtils::xPathForNode(state), ss.str(), moreComing);
	}
	virtual void afterEnteringState(Interpreter interpreter,
	                                const std::string& stateId,
	                                const std::string& xpath,
	                                const std::string& state,
	                                bool moreComing) {}


	virtual void beforeInvoking(Interpreter interpreter,
	                            const Arabica::DOM::Element<std::string>& invokeElem,
	                            const std::string& invokeid) {
		std::stringstream ss;
		ss << invokeElem;
		beforeInvoking(interpreter, DOMUtils::xPathForNode(invokeElem), invokeid, ss.str());
	}
	virtual void beforeInvoking(Interpreter interpreter,
	                            const std::string& xpath,
	                            const std::string& invokeid,
	                            const std::string& element) {}

	virtual void afterInvoking(Interpreter interpreter,
	                           const Arabica::DOM::Element<std::string>& invokeElem,
	                           const std::string& invokeid) {
		std::stringstream ss;
		ss << invokeElem;
		afterInvoking(interpreter, DOMUtils::xPathForNode(invokeElem), invokeid, ss.str());
	}
	virtual void afterInvoking(Interpreter interpreter,
	                           const std::string& xpath,
	                           const std::string& invokeid,
	                           const std::string& element) {}

	virtual void reportIssue(Interpreter interpreter, InterpreterIssue issue) {}
};

}


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