summaryrefslogtreecommitdiffstats
path: root/apps/uscxml-browser.cpp
blob: 2185aa94d8fd64a84d6fa7757f03016066199d30 (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
227
#include "uscxml/config.h"
#include "uscxml/Interpreter.h"
#include "uscxml/dom/DOMUtils.h"

#ifndef BUILD_MINIMAL
#	include "uscxml/debug/DebuggerServlet.h"
#endif
#include <glog/logging.h>

#include "uscxml/Factory.h"
#include "uscxml/server/HTTPServer.h"

#ifdef HAS_SIGNAL_H
#include <signal.h>
#endif

#ifdef HAS_EXECINFO_H
#include <execinfo.h>
#endif

#ifdef HAS_DLFCN_H
#include <dlfcn.h>
#endif

#ifdef CMAKE_BUILD_TYPE_DEBUG

#ifdef HAS_EXECINFO_H
void printBacktrace(void** array, int size) {
	char** messages = backtrace_symbols(array, size);
	for (size_t i = 0; i < size && messages != NULL; ++i) {
		std::cerr << "\t" << messages[i] << std::endl;
	}
	std::cerr << std::endl;
	free(messages);
}

#ifdef HAS_DLFCN_H
// see https://gist.github.com/nkuln/2020860
typedef void (*cxa_throw_type)(void *, void *, void (*) (void *));
cxa_throw_type orig_cxa_throw = 0;

void load_orig_throw_code() {
	orig_cxa_throw = (cxa_throw_type) dlsym(RTLD_NEXT, "__cxa_throw");
}

extern "C"
CXA_THROW_SIGNATURE {
	std::cerr << __FUNCTION__ << " will throw exception from " << std::endl;
	if (orig_cxa_throw == 0)
		load_orig_throw_code();

	void *array[50];
	size_t size = backtrace(array, 50);
	printBacktrace(array, size);
	orig_cxa_throw(thrown_exception, pvtinfo, dest);
}
#endif
#endif


// see http://stackoverflow.com/questions/2443135/how-do-i-find-where-an-exception-was-thrown-in-c
void customTerminate() {
	static bool tried_throw = false;
	try {
		// try once to re-throw currently active exception
		if (!tried_throw) {
			tried_throw = true;
			throw;
		} else {
			tried_throw = false;
		}
	} catch (const std::exception &e) {
		std::cerr << __FUNCTION__ << " caught unhandled exception. what(): "
		          << e.what() << std::endl;
	} catch (const uscxml::Event &e) {
		std::cerr << __FUNCTION__ << " caught unhandled exception. Event: "
		          << e << std::endl;
	} catch (...) {
		std::cerr << __FUNCTION__ << " caught unknown/unhandled exception."
		          << std::endl;
	}

#ifdef HAS_EXECINFO_H
	void * array[50];
	int size = backtrace(array, 50);

	printBacktrace(array, size);
#endif
	abort();
}
#endif

int main(int argc, char** argv) {
	using namespace uscxml;

#if defined(HAS_SIGNAL_H) && !defined(WIN32)
	signal(SIGPIPE, SIG_IGN);
#endif

#ifdef CMAKE_BUILD_TYPE_DEBUG
	std::set_terminate(customTerminate);
#endif

	InterpreterOptions options = InterpreterOptions::fromCmdLine(argc, argv);

	// setup logging
	google::LogToStderr();
	google::InitGoogleLogging(argv[0]);

	if (options.pluginPath.length() > 0) {
		Factory::setDefaultPluginPath(options.pluginPath);
	}

	if (options.verbose) {
		Factory::getInstance()->listComponents();
	}
	if (!options) {
		InterpreterOptions::printUsageAndExit(argv[0]);
	}

	// setup HTTP server
	HTTPServer::SSLConfig* sslConf = NULL;
	if (options.certificate.length() > 0) {
		sslConf = new HTTPServer::SSLConfig();
		sslConf->privateKey = options.certificate;
		sslConf->publicKey = options.certificate;
		sslConf->port = options.httpsPort;

	} else if (options.privateKey.length() > 0 && options.publicKey.length() > 0) {
		sslConf = new HTTPServer::SSLConfig();
		sslConf->privateKey = options.privateKey;
		sslConf->publicKey = options.publicKey;
		sslConf->port = options.httpsPort;

	}
	HTTPServer::getInstance(options.httpPort, options.wsPort, sslConf);

#ifndef BUILD_MINIMAL
	DebuggerServlet* debugger;
	if (options.withDebugger) {
		debugger = new DebuggerServlet();
		debugger->copyToInvokers(true);
		HTTPServer::getInstance()->registerServlet("/debug", debugger);
	}
#endif

	// instantiate and configure interpreters
	std::list<Interpreter> interpreters;
	for(int i = 0; i < options.interpreters.size(); i++) {

		InterpreterOptions* currOptions = options.interpreters[0].second;
		std::string documentURL = options.interpreters[0].first;

		LOG(INFO) << "Processing " << documentURL;

		try {
			Interpreter interpreter = Interpreter::fromURL(documentURL);
			if (interpreter) {

				if (options.checking) {
					std::list<InterpreterIssue> issues = interpreter.validate();
					for (std::list<InterpreterIssue>::iterator issueIter = issues.begin(); issueIter != issues.end(); issueIter++) {
						std::cout << *issueIter << std::endl;
					}

				}

				interpreter.setCmdLineOptions(options.additionalParameters);
				interpreter.setCmdLineOptions(currOptions->additionalParameters);
				interpreter.setCapabilities(options.getCapabilities());

				if (options.verbose) {
					StateTransitionMonitor* vm = new StateTransitionMonitor();
					vm->copyToInvokers(true);
					interpreter.addMonitor(vm);
				}

#ifndef BUILD_MINIMAL
				if (options.withDebugger) {
					interpreter.addMonitor(debugger);
				}
#endif

				interpreters.push_back(interpreter);

			} else {
				LOG(ERROR) << "Cannot create interpreter from " << documentURL;
			}
		} catch (Event e) {
			std::cout << e << std::endl;
		}
	}

	// start interpreters
	try {
		std::list<Interpreter>::iterator interpreterIter = interpreters.begin();
		while(interpreterIter != interpreters.end()) {
			interpreterIter->start();
			interpreterIter++;
		}

		bool stillRunning = true;
		// call from main thread for UI events
		while(interpreters.size() > 0) {
			interpreterIter = interpreters.begin();
			while(interpreterIter != interpreters.end()) {
				stillRunning = interpreterIter->runOnMainThread(25);
				if (!stillRunning) {
					interpreters.erase(interpreterIter++);
				} else {
					interpreterIter++;
				}
			}
		}

#ifndef BUILD_MINIMAL
		if (options.withDebugger) {
			// idle and wait for CTRL+C or debugging events
			while(true)
				tthread::this_thread::sleep_for(tthread::chrono::seconds(1));
		}
#endif
	} catch (Event e) {
		std::cout << e << std::endl;
	}
	return EXIT_SUCCESS;
}