summaryrefslogtreecommitdiffstats
path: root/src/uscxml/plugins/invoker/imap/IMAPInvoker.h
blob: bf2b3e96f138f259744b1124ab4e8ef64c1ccbb9 (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
/**
 *  @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
 */

#ifndef IMAPINVOKER_H_W09JFED0
#define IMAPINVOKER_H_W09JFED0

#include <uscxml/Interpreter.h>
#include <uscxml/concurrency/BlockingQueue.h>

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

#include <curl/curl.h>

namespace uscxml {

class IMAPInvoker : public InvokerImpl {
public:
	IMAPInvoker();
	virtual ~IMAPInvoker();
	virtual boost::shared_ptr<InvokerImpl> create(InterpreterImpl* interpreter);

	virtual std::list<std::string> getNames() {
		std::list<std::string> names;
		names.push_back("imap");
		names.push_back("http://uscxml.tk.informatik.tu-darmstadt.de/#imap");
		return names;
	}

	virtual Data getDataModelVariables();
	virtual void send(const SendRequest& req);
	virtual void cancel(const std::string sendId);
	virtual void invoke(const InvokeRequest& req);

protected:

	class IMAPContext {

	public:
		enum Cmd {
			// valid in authenticated state
			IMAP_SELECT,
			IMAP_EXAMINE,
			IMAP_CREATE,
			IMAP_DELETE,
			IMAP_RENAME,
			IMAP_SUBSCRIBE,
			IMAP_UNSUBSCRIBE,
			IMAP_LIST,
			IMAP_LSUB,
			IMAP_STATUS,
			IMAP_APPEND,
			// valid in selected state
			IMAP_CHECK,
			IMAP_CLOSE,
			IMAP_EXPUNGE,
			IMAP_SEARCH,
			IMAP_FETCH,
			IMAP_STORE,
			IMAP_COPY,
			IMAP_UID,
			IMAP_XEXTENSION,
		};

		struct MailboxOp {
			std::string mailbox;
		};

		struct Select : MailboxOp {};
		struct Examine : MailboxOp {};
		struct Create : MailboxOp {};
		struct Delete : MailboxOp {};
		struct Rename : MailboxOp {
			std::string newName;
		};
		struct Subscribe : MailboxOp {};
		struct Unsubscribe : MailboxOp {};
		struct List : MailboxOp {
			std::string refName;
		};
		struct LSub : List {};
		struct Status : MailboxOp {
			std::string dataItems;
		};
		struct Append : MailboxOp {
			std::string flags;
			std::string dateTime;
			std::string literal;
		};
		struct Check {};
		struct Close {};
		struct Expunge {};
		struct Search {
			std::string charSet;
			std::string criteria;
		};
		struct Fetch {
			std::string sequence;
			std::string itemNames;
		};
		struct Store : Fetch {
			std::string values;
		};
		struct Copy : MailboxOp {
			std::string sequence;
		};
		struct UId {
			std::string command;
			std::string arguments;
		};
		struct XExtension : UId {};


		IMAPContext() : readPtr(0) {}

		void* arguments;
		Cmd command;

		IMAPInvoker* invoker;
		SendRequest sendReq;
		std::stringstream inContent;
		std::string outContent;
		size_t readPtr;
		bool verbose;
		bool useSSL;

	};

protected:
	std::string _username;
	std::string _password;
	std::string _server;

	static void run(void*);

	tthread::thread* _thread;
	uscxml::concurrency::BlockingQueue<IMAPContext*> _workQueue;
	bool _isRunning;

	void process(IMAPContext* ctx);
	static size_t writeCurlData(void *ptr, size_t size, size_t nmemb, void *userdata);
	static size_t readCurlData(void *ptr, size_t size, size_t nmemb, void *userdata);

//	Data parseListReponse(const std::string& response);
};

#ifdef BUILD_AS_PLUGINS
PLUMA_INHERIT_PROVIDER(IMAPInvoker, InvokerImpl);
#endif

}


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