summaryrefslogtreecommitdiffstats
path: root/src/uscxml/plugins/ioprocessor/modality/MMIHTTPIOProcessor.h
blob: 2dbd5954551b6a8795fd44e4c780725039e068ba (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
#ifndef MMIHTTPIOPROCESSOR_H_P1FN0YPL
#define MMIHTTPIOPROCESSOR_H_P1FN0YPL

#include "uscxml/plugins/ioprocessor/basichttp/BasicHTTPIOProcessor.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 MMIHTTPIOProcessor : public BasicHTTPIOProcessor {
	public:
		MMIHTTPIOProcessor();
		virtual ~MMIHTTPIOProcessor();
		virtual boost::shared_ptr<IOProcessorImpl> create(uscxml::InterpreterImpl* interpreter);

		virtual std::set<std::string> getNames() {
			std::set<std::string> names;
			names.insert("mmihttp");
			names.insert("http://www.w3.org/TR/mmi-arch/#HTTPTransport");
			return names;
		}

		virtual void send(const SendRequest& req);

		/// HTTPServlet
		void httpRecvRequest(const HTTPServer::Request& req);

		bool canAdaptPath() {
			return false;
		}

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

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

}

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