summaryrefslogtreecommitdiffstats
path: root/src/eventhandler.cpp
blob: 242c05fb3664484a7ca5275183cacfe655a3bf61 (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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
/***************************************************************************
 *   Copyright (C) 2004 by Magnus Kulke                                    *
 *   mkulke@magnusmachine                                                  *
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 *   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.  See the         *
 *   GNU General Public License for more details.                          *
 *                                                                         *
 *   You should have received a copy of the GNU General Public License     *
 *   along with this program; if not, write to the                         *
 *   Free Software Foundation, Inc.,                                       *
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
 ***************************************************************************/

#include <ntqevent.h>

#include "ftpthread.h"
#include "eventhandler.h"

/* 
class description:

the class transforms the events posted by an ftp thread into signals. the signals
are composed from the type of the arrived event and in certain cases an out_variable.
*/

/* constructor */

EventHandler::EventHandler(TQObject *parent, const char *name)
 : TQObject(parent, name)
{
	installEventFilter(this);

	mp_thread = NULL;
}

/* destructor */

EventHandler::~EventHandler()
{
}

/* set ftp thread */

void EventHandler::SetFtpThread(FtpThread* thread)
{
	mp_thread = thread;
}

/* the eventfilter method. when a certain event arrives a signal is emitted, composed
from the events type and a possible out_ variable from the ftp thread object. */

bool EventHandler::eventFilter(TQObject*, TQEvent *e )
{
	EventType type = (EventType)(e->type());

	if (mp_thread == NULL)
	{
		emit ftp_error("mp_thread is NULL");
		return TRUE;
	}
	else if (type == outlog) 
	{   
		TQString *line = static_cast<TQString*>(static_cast<TQCustomEvent*>(e)->data());
		emit ftp_log(*line, true);
		delete line;
      return TRUE; 
   }
	else if (type == inlog) 
	{   
		TQString *line = static_cast<TQString*>(static_cast<TQCustomEvent*>(e)->data());
		emit ftp_log(*line, false);
		delete line;
      return TRUE; 
   }
	else if (type == xfered) 
	{   
		xferpair* xp = static_cast<xferpair*>(static_cast<TQCustomEvent*>(e)->data());
		emit ftp_xfered(xp->first, xp->second);
		delete xp;
      return TRUE; 
   }
	else if (type == finished) 
	{   
		emit ftp_finished();
      return TRUE; 
   }	
	else if (type == connectionlost) 
	{   
		emit ftp_connectionlost();
      return TRUE; 
   }	
	else if (type == connect_success) 
	{   
		emit ftp_connect(true);
      return TRUE; 
   } 
	else if (type == connect_failure) 
	{   
		emit ftp_connect(false);
      return TRUE; 
   }
	else if (type == misc_success) 
	{   
		emit ftp_misc(true);
      return TRUE; 
   } 
	else if (type == misc_failure) 
	{   
		emit ftp_misc(false);
      return TRUE; 
   }
	else if (type == login_success) 
	{   
		emit ftp_login(true);
      return TRUE; 
   } 
	else if (type == login_failure) 
	{   
		emit ftp_login(false);
      return TRUE; 
   }
	else if (type == quit_success) 
	{   
		emit ftp_quit(true);
      return TRUE; 
   } 
	else if (type == quit_failure) 
	{   
		emit ftp_quit(false);
      return TRUE; 
   }
	else if (type == authtls_success) 
	{   
		emit ftp_authtls(true);
      return TRUE; 
   } 
	else if (type == authtls_failure) 
	{   
		emit ftp_authtls(false);
      return TRUE; 
   }
	else if (type == pwd_success) 
	{   
		TQString *path = static_cast<TQString*>(static_cast<TQCustomEvent*>(e)->data());
		emit ftp_pwd(true, *path);
		delete path;
      return TRUE; 
   } 
	else if (type == pwd_failure) 
	{   
		emit ftp_pwd(false, "");
      return TRUE; 
   }
	else if (type == chdir_success) 
	{   
		emit ftp_chdir(true);
      return TRUE; 
   }
	else if (type == chdir_failure) 
	{   
		emit ftp_chdir(false);
      return TRUE; 
   }
	else if (type == transfer_success) 
	{   
		emit ftp_transfer(true);
      return TRUE; 
   }
	else if (type == transfer_failure) 
	{   
		emit ftp_transfer(false);
      return TRUE; 
   }
	else if (type == dir_success) 
	{   
		contentpair *content = static_cast<contentpair*>(static_cast<TQCustomEvent*>(e)->data());
		emit ftp_dir(true, content->first, content->second);
      return TRUE; 
   }
	else if (type == dir_failure) 
	{   
		contentpair *content = static_cast<contentpair*>(static_cast<TQCustomEvent*>(e)->data());
		emit ftp_dir(false, content->first, content->second);
      return TRUE; 
   }
	else if (type == scandir_success) 
	{   
		KbDirInfo *dir = static_cast<KbDirInfo*>(static_cast<TQCustomEvent*>(e)->data());
		emit ftp_scandir(true, dir);
      return TRUE; 
   }
	else if (type == scandir_failure) 
	{   
		emit ftp_scandir(false, NULL);
      return TRUE; 
   }
	else if (type == rm_success) 
	{   
		emit ftp_rm(true);
      return TRUE; 
   }
	else if (type == rm_failure) 
	{   
		emit ftp_rm(false);
      return TRUE; 
   }
	else if (type == rmdir_success) 
	{   
		emit ftp_rmdir(true);
      return TRUE; 
   }
	else if (type == rmdir_failure) 
	{   
		emit ftp_rmdir(false);
      return TRUE; 
   }
	else if (type == encryptdata_success) 
	{   
		emit ftp_encryptdata(true);
      return TRUE; 
   }
	else if (type == encryptdata_failure) 
	{   
		emit ftp_encryptdata(false);
      return TRUE; 
   }
	else if (type == get_success) 
	{   
		emit ftp_get(true);
      return TRUE; 
   }
	else if (type == get_failure) 
	{   
		emit ftp_get(false);
      return TRUE; 
   }
	else if (type == mkdir_success) 
	{   
		emit ftp_mkdir(true);
      return TRUE; 
   }
	else if (type == mkdir_failure) 
	{   
		emit ftp_mkdir(false);
      return TRUE; 
   }
	else if (type == rename_success) 
	{   
		emit ftp_rename(true);
      return TRUE; 
   }
	else if (type == rename_failure) 
	{   
		emit ftp_rename(false);
      return TRUE; 
   }
	else if (type == raw_success) 
	{   
		emit ftp_raw(true);
      return TRUE; 
   }
	else if (type == raw_failure) 
	{   
		emit ftp_raw(false);
      return TRUE; 
   }
	else if (type == put_success) 
	{   
		emit ftp_put(true);
      return TRUE; 
   }
	else if (type == put_failure) 
	{   
		emit ftp_put(false);
      return TRUE; 
   }
	else if (type == fxp_success) 
	{   
		emit ftp_fxp(true);
      return TRUE; 
   }
	else if (type == fxp_failure) 
	{   
		emit ftp_fxp(false);
      return TRUE; 
   }
	else 
	{
      return FALSE;
  	}
}


#include "eventhandler.moc"