blob: 10adbc3bcaafa89c2f28fc164ec52146e354af8d (
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
|
#ifndef MMIEVENTSERVLET_H_92WSR1SU
#define MMIEVENTSERVLET_H_92WSR1SU
#include "uscxml/concurrency/eventqueue/DelayedEventQueue.h"
#include "uscxml/server/HTTPServer.h"
#include "uscxml/Interpreter.h"
#include "uscxml/Factory.h"
#ifndef _WIN32
#include <sys/time.h>
#endif
#include <event2/http.h>
#include <event2/http_struct.h>
#include <uscxml/plugins/ioprocessor/modality/MMIMessages.h>
namespace uscxml {
class MMIEventServlet : public HTTPServlet, public URLMonitor, public MMIEventSender {
public:
MMIEventServlet(const std::string& path);
virtual ~MMIEventServlet();
void addMonitor(MMIEventReceiver* mmiMonitor) {
_monitors.insert(mmiMonitor);
}
void removeMonitor(MMIEventReceiver* mmiMonitor) {
_monitors.erase(mmiMonitor);
}
/// HTTPServlet
void httpRecvRequest(const HTTPServer::Request& req);
void setURL(const std::string& url) {
_url = url;
}
std::string getURL() { return _url; }
bool canAdaptPath() {
return false;
}
// URLMonitor
void downloadStarted(const URL& url);
void downloadCompleted(const URL& url);
void downloadFailed(const URL& url, int errorCode);
// MMIEventSender
virtual void send(const MMIEvent& mmiEvent);
protected:
std::string _url;
std::string _path;
std::map<std::string, std::pair<URL, SendRequest> > _sendRequests;
std::set<MMIEventReceiver*> _monitors;
};
}
#endif /* end of include guard: MMIEVENTSERVLET_H_92WSR1SU */
|