summaryrefslogtreecommitdiffstats
path: root/apps/w3c-mmi/MMIEventServlet.cpp
blob: 5ee18070bda173e9ab1da0e63948ec4277bb48d1 (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
#include "MMIEventServlet.h"
#include <uscxml/NameSpacingParser.h>

#ifdef _WIN32
#include <winsock2.h>
#include <windows.h>
#endif

#include "uscxml/Message.h"
#include <iostream>
#include <event2/dns.h>
#include <event2/buffer.h>
#include <event2/keyvalq_struct.h>

#include <string.h>

#include <io/uri.hpp>
#include <glog/logging.h>

#ifndef _WIN32
#include <netdb.h>
#include <arpa/inet.h>
#endif

#define MMI_HTTP_EVENT_CASE(type) \
else if (boost::iequals(mmiEvent.getLocalName(), #type)) { \
	monIter = _monitors.begin(); \
	while(monIter != _monitors.end()) { \
		(*monIter)->received(type::fromXML(mmiDoc)); \
		monIter++; \
	} \
}

namespace uscxml {
	
	using namespace Arabica::DOM;
	
	MMIEventServlet::MMIEventServlet(const std::string& path) : _path(path) {
		// register at http server
		bool success = HTTPServer::registerServlet(_path, this);
		assert(success);
	}
	
	MMIEventServlet::~MMIEventServlet() {
		HTTPServer* httpServer = HTTPServer::getInstance();
		httpServer->unregisterServlet(this);
	}
	
	void MMIEventServlet::send(const MMIEvent& mmiEvent) {
		URL url(mmiEvent.target);
		url.addMonitor(this);
		
		std::stringstream content;
		content << mmiEvent.toXML();
		url.setOutContent(content.str());
		url.download();
		
	}

	void MMIEventServlet::httpRecvRequest(const HTTPServer::Request& req) {

		// is this a request from a HTML browser?
		
		
		NameSpacingParser* parser = NameSpacingParser::fromXML(req.data.compound.at("content").atom);
		if (!parser) {
			evhttp_send_error(req.curlReq, 402, NULL);
			return;
		}
		
		Document<std::string> mmiDoc = parser->getDocument();
		std::cout << mmiDoc.getNamespaceURI() << std::endl;
		Node<std::string> mmiEvent = mmiDoc.getFirstChild();
		// get the first element
		while (mmiEvent && mmiEvent.getNodeType() != Node_base::ELEMENT_NODE) {
			mmiEvent = mmiEvent.getNextSibling();
		}
		// get the contained message
		if (boost::iequals(mmiEvent.getLocalName(), "mmi")) {
			mmiEvent = mmiEvent.getFirstChild();
			while (mmiEvent && mmiEvent.getNodeType() != Node_base::ELEMENT_NODE) {
				mmiEvent = mmiEvent.getNextSibling();
			}
		}
		std::cout << mmiEvent << std::endl;
		
		if (!mmiEvent) {
			evhttp_send_error(req.curlReq, 402, NULL);
			return;
		}

		std::set<MMIEventReceiver*>::iterator monIter;
		if (false) {}
		MMI_HTTP_EVENT_CASE(NewContextRequest)
		MMI_HTTP_EVENT_CASE(NewContextResponse)
		MMI_HTTP_EVENT_CASE(PrepareRequest)
		MMI_HTTP_EVENT_CASE(PrepareResponse)
		MMI_HTTP_EVENT_CASE(StartRequest)
		MMI_HTTP_EVENT_CASE(StartResponse)
		MMI_HTTP_EVENT_CASE(DoneNotification)
		MMI_HTTP_EVENT_CASE(CancelRequest)
		MMI_HTTP_EVENT_CASE(CancelResponse)
		MMI_HTTP_EVENT_CASE(PauseRequest)
		MMI_HTTP_EVENT_CASE(PauseResponse)
		MMI_HTTP_EVENT_CASE(ResumeRequest)
		MMI_HTTP_EVENT_CASE(ResumeResponse)
		MMI_HTTP_EVENT_CASE(ExtensionNotification)
		MMI_HTTP_EVENT_CASE(ClearContextRequest)
		MMI_HTTP_EVENT_CASE(ClearContextResponse)
		MMI_HTTP_EVENT_CASE(StatusRequest)
		MMI_HTTP_EVENT_CASE(StatusResponse)
		else {
			LOG(ERROR) << "Unknown MMI Event";
			evhttp_send_error(req.curlReq, 402, NULL);
			return;
		}
		
		evhttp_send_reply(req.curlReq, 204, NULL, NULL);

#if 0
		Event reqEvent = req;
		reqEvent.type = Event::EXTERNAL;
		bool scxmlStructFound = false;
		
		if (reqEvent.data.compound["header"].compound.find("Content-Type") != reqEvent.data.compound["header"].compound.end() &&
				boost::iequals(reqEvent.data.compound["header"].compound["Content-Type"].atom, "application/x-www-form-urlencoded")) {
			std::stringstream ss(reqEvent.data.compound["content"].atom);
			std::string term;
			while(std::getline(ss, term, '&')) {
				size_t split = term.find_first_of("=");
				if (split != std::string::npos) {
					std::string key = evhttp_decode_uri(term.substr(0, split).c_str());
					std::string value = evhttp_decode_uri(term.substr(split + 1).c_str());
					if (boost::iequals(key, "_scxmleventname")) {
						reqEvent.name = value;
					} else if (boost::iequals(key, "content")) {
						reqEvent.initContent(value);
					} else {
						reqEvent.data.compound[key] = value;
						reqEvent.params.insert(std::make_pair(key, value));
					}
				} else {
					// this is most likely wrong
					reqEvent.content = evhttp_decode_uri(term.c_str());
				}
			}
		} else {
			if (reqEvent.data.compound["header"].compound.find("_scxmleventstruct") != reqEvent.data.compound["header"].compound.end()) {
				// TODO: this looses all other information
				reqEvent = Event::fromXML(evhttp_decode_uri(reqEvent.data.compound["header"].compound["_scxmleventstruct"].atom.c_str()));
				scxmlStructFound = true;
			}
			if (reqEvent.data.compound["header"].compound.find("_scxmleventname") != reqEvent.data.compound["header"].compound.end()) {
				reqEvent.name = evhttp_decode_uri(reqEvent.data.compound["header"].compound["_scxmleventname"].atom.c_str());
			}
		}
		std::map<std::string, Data>::iterator headerIter = reqEvent.data.compound["header"].compound.begin();
		while(headerIter != reqEvent.data.compound["header"].compound.end()) {
			reqEvent.data.compound[headerIter->first] = Data(evhttp_decode_uri(headerIter->second.atom.c_str()), Data::VERBATIM);
			headerIter++;
		}
		
		
		/// test532
		if (reqEvent.name.length() == 0)
			reqEvent.name = "http." + req.data.compound.at("type").atom;
		
		if (!scxmlStructFound) {
			// get content into event
			reqEvent.data.compound["content"] = Data(req.content, Data::VERBATIM);
		}
		
		evhttp_send_reply(req.curlReq, 200, "OK", NULL);
#endif
	}
		
	void MMIEventServlet::downloadStarted(const URL& url) {}
	
	void MMIEventServlet::downloadCompleted(const URL& url) {
		std::map<std::string, std::pair<URL, SendRequest> >::iterator reqIter = _sendRequests.begin();
		while(reqIter != _sendRequests.end()) {
			if (reqIter->second.first == url) {
				_sendRequests.erase(reqIter);
				return;
			}
			reqIter++;
		}
		assert(false);
	}
	
	void MMIEventServlet::downloadFailed(const URL& url, int errorCode) {
		
		std::map<std::string, std::pair<URL, SendRequest> >::iterator reqIter = _sendRequests.begin();
		while(reqIter != _sendRequests.end()) {
			if (reqIter->second.first == url) {
				Event failEvent;
				failEvent.name = "error.communication";
//				returnEvent(failEvent);
				
				_sendRequests.erase(reqIter);
				return;
			}
			reqIter++;
		}
		assert(false);
		
	}
	
	
}