summaryrefslogtreecommitdiffstats
path: root/src/uscxml/plugins/invoker/xhtml/XHTMLInvoker.cpp
blob: 196d6d2c705c157a6e4662f287ceda07ff2bdee0 (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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
/**
 *  @file
 *  @author     2012-2013 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
 */

#include <boost/algorithm/string.hpp>

#include <uscxml/config.h>
#include "XHTMLInvoker.h"
#include <glog/logging.h>
#include "uscxml/DOMUtils.h"
#include <uscxml/plugins/ioprocessor/comet/CometIOProcessor.h>
#include <DOM/io/Stream.hpp>

#ifdef BUILD_AS_PLUGINS
#include <Pluma/Connector.hpp>
#endif

#if __APPLE__
#	if TARGET_OS_IPHONE || TARGET_IPHONE_SIMULATOR
#	else
#	include <CoreFoundation/CFBundle.h>
#	include <ApplicationServices/ApplicationServices.h>
#	endif
#endif

namespace uscxml {

#ifdef BUILD_AS_PLUGINS
PLUMA_CONNECTOR
bool pluginConnect(pluma::Host& host) {
	host.add( new XHTMLInvokerProvider() );
	return true;
}
#endif

XHTMLInvoker::XHTMLInvoker() {
}

XHTMLInvoker::~XHTMLInvoker() {
	HTTPServer::unregisterServlet(this);
};

boost::shared_ptr<InvokerImpl> XHTMLInvoker::create(InterpreterImpl* interpreter) {
	boost::shared_ptr<XHTMLInvoker> invoker = boost::shared_ptr<XHTMLInvoker>(new XHTMLInvoker());
	invoker->_interpreter = interpreter;
	return invoker;
}

bool XHTMLInvoker::httpRecvRequest(const HTTPServer::Request& req) {
	tthread::lock_guard<tthread::recursive_mutex> lock(_mutex);

	// these are the XHR requests
	if (iequals(req.data.at("header").at("X-Requested-With").atom, "XMLHttpRequest")) {
		if (iequals(req.data.at("type").atom, "get")) {
			// this is the incoming the long-polling GET
			if (_longPoll) {
				// cancel old longPoller
				evhttp_send_error(_longPoll.evhttpReq, 204, NULL);
				_longPoll.evhttpReq = NULL;
			}

			_longPoll = req;
			if (!_outQueue.empty()) {
				// do we have some send requests pending?
				HTTPServer::Reply reply =_outQueue.front();
				reply.setRequest(_longPoll);
				HTTPServer::reply(reply);
				_outQueue.pop_front();
				_longPoll.evhttpReq = NULL;
			}
			return true;

		} else {
			// an incomping event per POST request
			Event ev(req);
			if (ev.data["header"].hasKey("X-SCXML-Name")) {
				ev.name = ev.data["header"]["X-SCXML-Name"].atom;
			} else {
				ev.name = req.data.at("type").atom;
			}

			// initialize data
			ev.data = req.data.at("content");
			ev.eventType = Event::EXTERNAL;

			HTTPServer::Reply reply(req);
			HTTPServer::reply(reply);

			returnEvent(ev);
			return true;
		}
	}

	// initial request for a document
	if (!req.data.hasKey("query") && // no query parameters
	        iequals(req.data.at("type").atom, "get") && // request type is GET
	        req.content.length() == 0) { // no content

		// send template to establish long polling
		HTTPServer::Reply reply(req);

		// _invokeReq.content will contain the actual content as we needed to replace expressions in the interpreter thread

		if (!_invokeReq.data.empty()) {
			// just reply with given data as json, this time and for ever
			reply.content = _invokeReq.content;
			reply.headers["Content-type"] = "application/json";
			HTTPServer::reply(reply);
			return true;

		} else if (_invokeReq.dom) {
			// there is some XML given with the content
			if (HAS_ATTR_CAST(_invokeReq.dom, "type")) {
				// it's special XML to send per Comet later on, default to sending template and enqueue
				_longPoll.evhttpReq = NULL;
				_outQueue = std::deque<HTTPServer::Reply>();

				HTTPServer::Reply reply;
				reply.content = _invokeReq.content;
				reply.headers["Content-type"] = "application/xml";
				_outQueue.push_back(reply);

				// no return here - we wan to send the template below

			} else {
				// it's plain XML now and forever
				reply.content = _invokeReq.content;
				reply.headers["Content-type"] = "application/xml";
				HTTPServer::reply(reply);
				return true;
			}
		} else if (_invokeReq.content.size() > 0) {

			// just reply as text this time and for ever
			reply.content = _invokeReq.content;
			reply.headers["Content-type"] = "text/plain";
			HTTPServer::reply(reply);
			return true;
		}

		/*
		 * Return our template to establish a two way communication via comet
		 * If we want to replace expressions in the temaplte, we have to do it in invoke()
		 * for thread safety of the datamodel.
		 */

		// this file is generated from template/xhtml-invoker.xhtml via xxd
#include "template/xhtml-invoker.inc.h"

		// aggressive caching in IE will return all XHR get requests instantenously otherwise
		reply.headers["Cache-Control"] = "no-cache";
		reply.headers["Content-Type"] = "text/html; charset=utf-8";

		reply.content = std::string((const char*)template_xhtml_invoker_html, template_xhtml_invoker_html_len);
		HTTPServer::reply(reply);
		return true;
	}

	// don't know what to do with other requests
	return false;
}

Data XHTMLInvoker::getDataModelVariables() {
	Data data;
	return data;
}

void XHTMLInvoker::send(const SendRequest& req) {
	tthread::lock_guard<tthread::recursive_mutex> lock(_mutex);

	HTTPServer::Reply reply;

	if (req.dom) {
		// XML
		std::stringstream ss;
		if (req.dom.getNodeType() == Arabica::DOM::Node_base::ELEMENT_NODE) {
			Arabica::DOM::Element<std::string> contentElem = Arabica::DOM::Element<std::string>(req.dom);

			if (HAS_ATTR(contentElem, "type"))
				reply.headers["X-SCXML-Type"] = ATTR(contentElem, "type");
			if (HAS_ATTR(contentElem, "xpath"))
				reply.headers["X-SCXML-XPath"] = ATTR(contentElem, "xpath");
			if (HAS_ATTR(contentElem, "attr"))
				reply.headers["X-SCXML-Attr"] = ATTR(contentElem, "attr");
		}

		ss << req.dom;
		reply.content = ss.str();
		reply.headers["Content-Type"] = "application/xml";

	} else if (!req.data.empty()) {
		// JSON
		reply.content = Data::toJSON(req.data);
		reply.headers["Content-Type"] = "application/json";
	} else if (req.content.length() > 0) {
		reply.content = req.content;
		reply.headers["Content-Type"] = "text/plain";
	}

	// TODO: Params to set variables?

	_interpreter->getDataModel().replaceExpressions(reply.content);

	if (!_longPoll) {
		_outQueue.push_back(reply);
		return;
	}
	reply.setRequest(_longPoll);
	HTTPServer::reply(reply);
	_longPoll.evhttpReq = NULL;
}

void XHTMLInvoker::cancel(const std::string sendId) {
	HTTPServer::unregisterServlet(this);
}

void XHTMLInvoker::invoke(const InvokeRequest& req) {
	_invokeReq = req;

	// make sure _invokeReq.content contains correct and substituted string
	if (!_invokeReq.data.empty()) {
		_invokeReq.content = Data::toJSON(_invokeReq.data);
	} else if (_invokeReq.dom) {
		std::stringstream ss;
		ss << _invokeReq.dom;
		_invokeReq.content = ss.str();
	}
	_interpreter->getDataModel().replaceExpressions(_invokeReq.content);

	std::string browserURL;
	if (req.src.size() > 0) {
		// no src given, send browser off to some remote url
		browserURL = req.src;
	} else {
		// invoke to talk to us
		HTTPServer::registerServlet(_interpreter->getName() + "/" + req.invokeid + ".html", this);
		if (_url.size() == 0) {
			returnErrorExecution("No HTTP server running");
		}
		browserURL = _url.c_str();
	}
#if __APPLE__
#	if TARGET_OS_IPHONE || TARGET_IPHONE_SIMULATOR
#	else
	// see http://stackoverflow.com/questions/4177744/c-osx-open-default-browser
	CFURLRef url = CFURLCreateWithBytes (
	                   NULL,                        // allocator
	                   (UInt8*)browserURL.c_str(),     // URLBytes
	                   browserURL.length(),            // length
	                   kCFStringEncodingASCII,      // encoding
	                   NULL                         // baseURL
	               );
	if (LSOpenCFURLRef(url,0) == errSecSuccess) {
		if (url)
			CFRelease(url);
		return;
	}
#	endif
#endif
#ifdef _WIN32
// see http://support.microsoft.com/kb/224816
	ShellExecute(NULL, "open", browserURL.c_str(), NULL, NULL, SW_SHOWNORMAL);
	return;
#endif
#ifdef HAS_XDG_OPEN
	std::string systemCmd;
	systemCmd = "xdg-open ";
	systemCmd += browserURL;
	if (system(systemCmd.c_str()) >= 0)
		return;
#endif
	LOG(ERROR) << "Could not open a HTML browser, access '" << browserURL << "' yourself.";
}

}