summaryrefslogtreecommitdiffstats
path: root/src/uscxml/plugins/ioprocessor/basichttp/libevent/EventIOProcessor.h
blob: c549b2b2345d124d360377f3dcf76f7c46599ce6 (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
#ifndef EVENTIOPROCESSOR_H_2CUY93KU
#define EVENTIOPROCESSOR_H_2CUY93KU

#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>

#ifdef BUILD_AS_PLUGINS
#include "uscxml/plugins/Plugins.h"
#endif

namespace uscxml {

class EventIOServer;

class EventIOProcessor : public IOProcessorImpl, public HTTPServlet, public URLMonitor {
public:
	EventIOProcessor();
	virtual ~EventIOProcessor();
	virtual boost::shared_ptr<IOProcessorImpl> create(uscxml::Interpreter* interpreter);

	virtual std::set<std::string> getNames() {
		std::set<std::string> names;
		names.insert("basichttp");
		names.insert("http://www.w3.org/TR/scxml/#BasicHTTPEventProcessor");
		return names;
	}

	virtual void send(const SendRequest& req);

	Data getDataModelVariables();

	/// HTTPServlet
	void httpRecvRequest(const HTTPServer::Request& req);
	void setURL(const std::string& url) {
		_url = url;
	}

	bool canAdaptPath() {
		return false;
	}

	// URLMonitor
	void downloadStarted(const URL& url);
	void downloadCompleted(const URL& url);
	void downloadFailed(const URL& url, int errorCode);

protected:
	std::string _url;
	std::map<std::string, std::pair<URL, SendRequest> > _sendRequests;
};

#ifdef BUILD_AS_PLUGINS
PLUMA_INHERIT_PROVIDER(EventIOProcessor, IOProcessorImpl);
#endif

}

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